home *** CD-ROM | disk | FTP | other *** search
/ Power Programmierung / Power-Programmierung (Tewi)(1994).iso / magazine / msysjour / vol07 / 02 / controls / mustest.h < prev    next >
Text File  |  1992-02-29  |  837b  |  34 lines

  1. /*
  2.  * MUSCROLL.H
  3.  *
  4.  * Contains definitions specific to the MicroScroll test
  5.  * application, such as control identifiers, menu item
  6.  * identifiers, and internal function prototypes.
  7.  *
  8.  * Version 1.1, September 1991
  9.  *     Kraig Brockschmidt, Microsoft Corporation
  10.  *
  11.  * Version 1.0, October 1990
  12.  *     Kraig Brockschmidt, Microsoft Corporation
  13.  */
  14.  
  15.  
  16. //Menu identifiers.
  17. #define IDM_EXIT           100
  18.  
  19.  
  20. //Control Identifiers.
  21. #define ID_NULL             -1
  22. #define ID_VERTEDIT         300
  23. #define ID_HORZEDIT         301
  24. #define ID_HORZSCROLL       302
  25. #define ID_VERTSCROLL       303
  26.  
  27.  
  28. //Special style used for MicroScroll on a 'spin' button.
  29. #define MSS_SPIN (MSS_VERTICAL | MSS_TEXTHASRANGE | MSS_INVERTRANGE)
  30.  
  31.  
  32. //Function prototypes.
  33. long     FAR PASCAL MusTestWndProc(HWND, unsigned, WORD, LONG);
  34.